Difference Between Programming, Scripting, and Markup Languages
When it comes to making a website or app coding involves basically three types of languages i.e the programming language, Scripting Language and Markup Language....
read more
How to define an array of different generic types in TypeScript ?
In typescript, an array is a data type that can store multiple values of different data types sequentially. Similar to JavaScript, Typescript supports array declaration and there are multiple ways to do it....
read more
Top 10 Programming Languages of the World – 2019 to begin with…
If you are a newbie in the field of software development, the very first question comes to your mind is “Where to begin?” That’s undoubtedly true!...
read more
Role of SemiColon in various Programming Languages
Semicolon is a punctuation mark (;) indicating a pause, typically between two main clauses, that is more pronounced than that indicated by a comma. In programming, Semicolon symbol plays a vital role. It is used to show the termination of instruction in various programming languages as well, like C, C++, Java, JavaScript and Python....
read more
Hello World Program : First program while learning Programming
In this article, I’ll show you how to create your first Hello World computer program in various languages. Along with the program, comments are provided to help you better understand the terms and keywords used in theLearning program. Programming can be simplified as follows:...
read more
How to get name of calling function/method in PHP ?
Why need to get the name of calling function? The code consist of multiple functions performing different tasks but associated with each other directly or indirectly, and suddenly display an error in some of the functions then it will become necessary to find the name of the function in which an error has been occurred....
read more
Top 10 Languages For Full Stack Web Developement
Hey Geeks, fellow web developer! Have you ever heard the word full stack Web developer? As a full-stack developer, you have the superpower to create complete, top-notch web applications from scratch. But to reach superhero status, you need to get familiar with a variety of programming languages that play different roles in the development process. If you’re eager to become a versatile developer who can handle both the front-end and back-end aspects of web development, you’re in for an exciting ride....
read more
Comparison of Dart and JavaScript
In this article, we will compare Dart vs JavaScript, the two competing programming languages in cross-platform mobile application development. JavaScript reached the height of its popularity when it entered the fields of cross-platform mobile application development and server-side development. Since the Node.js framework can be used for both frontend and backend development, JavaScript became highly popular among web developers. With the rise of  React Native by Facebook, also mobile app developers started to move towards JavaScript. As a result, JavaScript remains the most popular programming language to this day....
read more
How to use Redux with ReactNative?
First, we create a fresh ReactNative Project by running the command “npx react-native init reduxDemo”. You can also integrate Redux into your existing project....
read more
Introduction to CherryPy
CherryPy is a popular framework of Python. Using CherryPy, web applications can be built in a faster and more reliable way. It is also called a web application library. It is known for its simplicity as it is based on object-oriented Python programming, resulting in smaller source code in less time. It is one of the oldest frameworks of Python, the very first version being released in June 2002. This framework is mainly for the developers who want to create portable database-driven web application using Python, as it provides Create, Retrieve, Update and Delete functionalities....
read more
Why You Should Choose React Native?
...
read more
Boolean Data Type
In programming languages, we have various data types to store different types of data. Some of the most used data types are integer, string, float, and boolean. The boolean data type is a type of data that stores only two types of values i.e. True or False. These values are not case-sensitive depending upon programming languages. The name Boolean comes from the branch of mathematics called Boolean algebra, named after George Bool the mathematician....
read more